home *** CD-ROM | disk | FTP | other *** search
- class TFHandler extends KeyAdapter implements FocusListener {
-
- public void focusGained(FocusEvent e) {
- e.getComponent().setBackground(Color.red);
- }
-
- public void focusLost(FocusEvent e) {
- e.getComponent().setBackground(Color.white);
- }
-
- public void keyTyped(KeyEvent e) {
- if (e.getKeyChar() == '!')
- e.getComponent().setBackground(Color.yellow);
- }
-
- }
-